/*

File:			custom.css

Description:	Custom styles for Thesis



BASIC USAGE:



If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 

will be appended with the "custom" class, like so: <body class="custom">. You can use 

the "custom" class to override *any* CSS declarations contained in the style.css file.



For example, if you wish to change the default link color to green, you would add the 

following declarations to this file:



	.custom a, .custom a:visited { color: #090; }	<--- This makes links green

	.custom a:hover { color: #00f; }				<--- This makes links blue when you mouse over them



WHY THIS WORKS:



By using the "custom" class, you are creating more specific CSS declarations for HTML

elements. CSS styling is applied through rules of specificity, and because declarations

prepended with .custom are more specific, they get applied when the page is rendered!



More information about styling your Thesis installation using this file can be found

in the User's Guide:

	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/

*/



    /* This line adds your custom background graphic */

    body.custom {

    /*background: #fff url('images/bkg.png'); no-repeat; margin: 0 auto;*/

    }



    .custom #container {

    margin-top: 2em;

    margin-bottom: 2em;

    }



    .custom #header_area .page {

    height: 180px;

    background: #4F4C7D url('images/head_bkg.png'); no-repeat; margin: 0 auto;

    }

    

 .custom #header {

border-bottom:none;

    }



 

    .custom #header_area {

    height: 210px;

     background: #fff url('images/bkg.png'); no-repeat; margin: 0 auto;

    }



.custom #header #tagline {

color:#E9E9C3;

font-weight:normal;

margin-top:7px;

}



.custom ul#tabs {

margin-top:150px;

}

.custom #content {

margin-top: 5px;

}

#content_box {

margin-top: 32px;

}





.custom h1, h2, h6 {

color:#2A4C7C;

font-weight:normal;

}



.custom .format_text h4 {

color:#2A4C7C;

font-size:1em;

}





.custom .format_text .drop_cap {

color:#839EBF;

float:left;

}

    .custom .full_width .page {

    padding-left:0em;

    padding-right:0em;

    }



.custom .format_text h3 {

line-height:0.3em;

}



.custom .format_text p.green_note, .format_text p.green_note {

padding:0.571em 0.786em;

}

.custom .format_text p.green_note {

background:#e1f5c9 none repeat scroll 0 0;

border:1px dotted #79a743;

}



.format_text a {color:#86A85B; text-decoration:underline;}

/* .format_text a:hover {color: #FF8A00; text-decoration:none;} */





li.widget {

font-size:1.3em;

line-height:1.385em;

margin-bottom:2.769em;

padding:0.5em;

}



.custom #contact {

/*border-left: 1px dotted #DDDDDD;*/

/*padding-left: 5em;*/

/*margin-top: 5em;*/

padding-bottom: 2em;

border-bottom: 1px solid #DDDDDD;

}



.custom .emph {

color:#86A85B;

/*font-weight:bold;*/

}



.format_text .emph_bold {

/*color:#2A4C7C;*/

color:#4F4C7D;

font-weight:bold;

}





/* Main Menu */



ul#tabs li {

background:#EFF3FF none repeat scroll 0 0;

}

ul#tabs li.current_page_item, ul#tabs li.current-cat {

background:#E1EFD1 none repeat scroll 0 0;

border-bottom:0 none;

padding-bottom:0.1em;

}

ul#tabs li a:hover {

color:#111111;

background:#EFEAD1 none repeat scroll 0 0;

text-decoration:none;

}



/* Footer */



.custom #footer_area {

border-top: solid 5px #9AB266;

background: #fff url('images/bkg.png'); no-repeat; margin: 0 auto;

/*background: #2A4C7D;*/

}



.custom #footer_left {float: left; width: 25%; text-align: left; margin-left: 5px;}

.custom #footer_right {float: right; width: 70%;}



.custom #footer {

border-top: none;

border-bottom: none;

clear:both;

color:#E9E9C3;

text-align:right;

font-size:1.12em;

height: 50px;

}



.custom #footer a, .custom #footer a:visited {color: #E9E9C3; text-decoration: underline; border-bottom: none;}

.custom #footer a:hover {color: #E0E0BE; text-decoration: underline; border-bottom: none;}



/* Custom Form */



.custom label {

clear:both;

display:block;

float:left;

margin-top:1.4em;

padding-right: 3em;

width:7em;

/*color:#006600;*/

}



.custom input {width:50%;}

.custom textarea {width:55%;}



.custom input, textarea {

background:#EFEFE0 none repeat scroll 0 0;

border-color:#B8B999 #DDDDDD #DDDDDD #B8B999;

border-style:solid;

border-width:1px;

color:#444444;

font-size:1em;

}



.custom input:focus, textarea:focus {

background:#EFEFE0 none repeat scroll 0 0;

border-color:#A3A484 #CCCCCC #CCCCCC #A3A484;

}



.custom button, input[type="reset"], input[type="button"], input[type="submit"] {

-moz-appearance:button;

-moz-binding:none;

-moz-box-sizing:border-box;

-moz-user-select:none;

-x-system-font:-moz-button;

background-color:#9AB266;

border:1px outset #9AB266;

color:#FFFFFF;

cursor:default;

font-family:-moz-use-system-font;

font-size:-moz-use-system-font;

font-size-adjust:-moz-use-system-font;

font-stretch:-moz-use-system-font;

font-style:-moz-use-system-font;

font-variant:-moz-use-system-font;

font-weight:-moz-use-system-font;

line-height:normal !important;

padding:0 6px;

text-align:center;

white-space:pre;

}



.custom button:hover, input[type="reset"]:hover, input[type="button"]:hover, input[type="submit"]:hover {

background-color:#7B8F50;

color:#FFFFFF;

}